From: Richard M. Stallman Date: Mon, 9 May 1994 03:30:55 +0000 (+0000) Subject: (process_send_signal): If PREFER_VSUSP, use VSUSP instead of VSWTCH. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~91648 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=d0adf46f8680b4a65f3385db8f81fd717f4107e5;p=emacs.git (process_send_signal): If PREFER_VSUSP, use VSUSP instead of VSWTCH. --- diff --git a/src/process.c b/src/process.c index eff69a13c28..2636e0d2dd9 100644 --- a/src/process.c +++ b/src/process.c @@ -2531,7 +2531,7 @@ process_send_signal (process, signo, current_group, nomsg) case SIGTSTP: tcgetattr (XINT (p->infd), &t); -#if defined (VSWTCH) && !defined (IRIX5) +#if defined (VSWTCH) && !defined (PREFER_VSUSP) send_process (proc, &t.c_cc[VSWTCH], 1); #else send_process (proc, &t.c_cc[VSUSP], 1);